home *** CD-ROM | disk | FTP | other *** search
/ SPACE 2 / SPACE - Library 2 - Volume 1.iso / program / 515 / rcs5ap1s.lzh / MAKETIME.C < prev    next >
C/C++ Source or Header  |  1991-01-30  |  9KB  |  322 lines

  1. #
  2. /*
  3.  * MAKETIME        derive 32-bit time value from TM structure.
  4.  *
  5.  * Usage:
  6.  *    int zone;    Minutes west of GMT, or
  7.  *            48*60 for localtime
  8.  *    time_t t;
  9.  *    struct tm *tp;    Pointer to TM structure from <time.h>
  10.  *    t = maketime(tp,zone);
  11.  *
  12.  * Returns:
  13.  *    -1 if failure; parameter out of range or nonsensical.
  14.  *    else time-value.
  15.  * Notes:
  16.  *    This code is quasi-public; it may be used freely in like software.
  17.  *    It is not to be sold, nor used in licensed software without
  18.  *    permission of the author.
  19.  *    For everyone's benefit, please report bugs and improvements!
  20.  *     Copyright 1981 by Ken Harrenstien, SRI International.
  21.  *    (ARPANET: KLH @ SRI)
  22.  */
  23. /* $Log: maketime.c,v $
  24.  * Revision 5.3  1991/01/30  14:21:32  apratt
  25.  * CI with RCS version 5
  26.  *
  27.  * Revision 5.2  90/11/01  05:03:30  eggert
  28.  * checked in with -k by apratt at 91.01.10.13.14.56.
  29.  * 
  30.  * Revision 5.2  1990/11/01  05:03:30  eggert
  31.  * Remove lint.
  32.  *
  33.  * Revision 5.1  1990/10/04  06:30:13  eggert
  34.  * Calculate the GMT offset of 'xxx LT' as of xxx, not as of now.
  35.  * Don't assume time_t is 32 bits.  Fix bugs near epoch and near end of time.
  36.  *
  37.  * Revision 5.0  1990/08/22  08:12:38  eggert
  38.  * Switch to GMT and fix the bugs exposed thereby.
  39.  * Permit dates past 1999/12/31.  Ansify and Posixate.
  40.  *
  41.  * Revision 1.8  88/11/08  13:54:53  narten
  42.  * allow negative timezones (-24h <= x <= 24h)
  43.  * 
  44.  * Revision 1.7  88/08/28  14:47:52  eggert
  45.  * Allow cc -R.  Remove unportable "#endif XXX"s.
  46.  * 
  47.  * Revision 1.6  87/12/18  17:05:58  narten
  48.  * include rcsparam.h
  49.  * 
  50.  * Revision 1.5  87/12/18  11:35:51  narten
  51.  * maketime.c: fixed USG code - you have tgo call "tzset" in order to have
  52.  * "timezone" set. ("localtime" calls it, but it's probably better not to 
  53.  * count on "localtime" having been called.)
  54.  * 
  55.  * Revision 1.4  87/10/18  10:26:57  narten
  56.  * Updating version numbers. Changes relative to 1.0 are actually 
  57.  * relative to 1.2
  58.  * 
  59.  * Revision 1.3  87/09/24  13:58:45  narten
  60.  * Sources now pass through lint (if you ignore printf/sprintf/fprintf 
  61.  * warnings)
  62.  * 
  63.  * Revision 1.2  87/03/27  14:21:48  jenkins
  64.  * Port to suns
  65.  * 
  66.  * Revision 1.2  83/12/05  10:12:56  wft
  67.  * added cond. compilation for USG Unix; long timezone;
  68.  * 
  69.  * Revision 1.1  82/05/06  11:38:00  wft
  70.  * Initial revision
  71.  * 
  72.  */
  73.  
  74.  
  75. #include "rcsbase.h"
  76.  
  77. libId(maketId, "$Id: maketime.c,v 5.3 1991/01/30 14:21:32 apratt Exp $")
  78.  
  79. static const struct tm *time2tm P((time_t));
  80.  
  81. #define given(v) (0 <= (v)) /* Negative values are unspecified. */
  82.  
  83. static const int daytb[] = {
  84.     /* # days in year thus far, indexed by month (0-12!!) */
  85.     0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365
  86. };
  87.  
  88.     static time_t
  89. maketime(atm,zone)
  90.     const struct tm *atm;
  91.     int zone;
  92. {
  93.     register const struct tm *tp;
  94.     register int i;
  95.     int year, yday, mon, day, hour, min, sec, leap, localzone;
  96.     int attempts;
  97.     time_t t, tres;
  98.  
  99.     attempts = 2;
  100.     localzone = zone==48*60;
  101.     tres = -1;
  102.     year = mon = day = 0;  /* Keep lint happy.  */
  103.  
  104.     do {
  105.  
  106.     if (localzone || !given(atm->tm_year)) {
  107.         if (tres == -1)
  108.             if ((tres = time((time_t*)0))  ==  -1)
  109.                 return -1;
  110.         tp = time2tm(tres);
  111.         /* Get breakdowns of default time, adjusting to zone. */
  112.         year = tp->tm_year;        /* Use to set up defaults */
  113.         yday = tp->tm_yday;
  114.         mon = tp->tm_mon;
  115.         day = tp->tm_mday;
  116.         hour = tp->tm_hour;
  117.         min = tp->tm_min;
  118.         if (localzone) {
  119.             tp = localtime(&tres);
  120.             zone =
  121.             min - tp->tm_min + 60*(
  122.                 hour - tp->tm_hour + 24*(
  123.                     /* If years differ, it's by one day. */
  124.                         year - tp->tm_year
  125.                     ?    year - tp->tm_year
  126.                     :    yday - tp->tm_yday));
  127.         }
  128.         /* Adjust the default day, month and year according to zone.  */
  129.         if ((min -= zone) < 0) {
  130.             if (hour-(59-min)/60 < 0  &&  --day <= 0) {
  131.             if (--mon < 0) {
  132.                 --year;
  133.                 mon = 11;
  134.             }
  135.             day  =  daytb[mon+1] - daytb[mon] + (mon==1&&!(year&3));
  136.             }
  137.         } else
  138.             if (
  139.               24 <= hour+min/60  &&
  140.               daytb[mon+1] - daytb[mon] + (mon==1&&!(year&3))  <  ++day
  141.             ) {
  142.                 if (11 < ++mon) {
  143.                     ++year;
  144.                     mon = 0;
  145.                 }
  146.                 day = 1;
  147.             }
  148.     }
  149.     if (zone < -24*60  ||  24*60 < zone)
  150.         return -1;
  151.  
  152.  
  153. #ifdef DEBUG
  154. printf("first YMD: %d %d %d\n",year,mon,day);
  155. #endif
  156.     tp = atm;
  157.  
  158.     /* First must find date, using specified year, month, day.
  159.      * If one of these is unspecified, it defaults either to the
  160.      * current date (if no more global spec was given) or to the
  161.      * zero-value for that spec (i.e. a more global spec was seen).
  162.      * Reject times that do not fit in time_t,
  163.      * without assuming that time_t is 32 bits or is signed.
  164.      */
  165.     if (given(tp->tm_year))
  166.       {
  167.         year = tp->tm_year;
  168.         mon = 0;        /* Since year was given, default */
  169.         day = 1;        /* for remaining specs is zero */
  170.       }
  171.     if (year < 69)            /* 1969/12/31 OK in some timezones.  */
  172.         return -1;        /* ERR: year out of range */
  173.     leap   =   !(year&3)  &&  (year%100 || !((year+300)%400));
  174.     year -= 70;            /* UNIX time starts at 1970 */
  175.  
  176.     /*
  177.      * Find day of year.
  178.      */
  179.     {
  180.         if (given(tp->tm_mon))
  181.           {    mon = tp->tm_mon;    /* Month was specified */
  182.             day = 1;        /* so set remaining default */
  183.           }
  184.         if (11 < (unsigned)mon)
  185.             return -1;        /* ERR: bad month */
  186.         if (given(tp->tm_mday)) day = tp->tm_mday;
  187.         if(day < 1
  188.          || (((daytb[mon+1]-daytb[mon]) < day)
  189.             && (day!=29 || mon!=1 || !leap) ))
  190.                 return -1;    /* ERR: bad day */
  191.         yday = daytb[mon]    /* Add # of days in months so far */
  192.           + ((leap        /* Leap year, and past Feb?  If */
  193.               && mon>1)? 1:0)    /* so, add leap day for this year */
  194.           + day-1;        /* And finally add # days this mon */
  195.  
  196.     }
  197.     if (leap+365 <= (unsigned)yday)
  198.         return -1;        /* ERR: bad YDAY */
  199.  
  200.     if (year < 0) {
  201.         if (yday != 364)
  202.         return -1;        /* ERR: too early */
  203.         t = -1;
  204.     } else {
  205.         tres = year*365;        /* Get # days of years so far */
  206.         if (tres/365 != year)
  207.             return -1;        /* ERR: overflow */
  208.         t = tres
  209.         + ((year+1)>>2)        /* plus # of leap days since 1970 */
  210.         + yday;            /* and finally add # days this year */
  211.         if (t+4 < tres)
  212.             return -1;        /* ERR: overflow */
  213.     }
  214.     tres = t;
  215.  
  216.     if (given(i = tp->tm_wday)) /* Check WDAY if present */
  217.         if (i != (tres+4)%7)    /* 1970/01/01 was Thu = 4 */
  218.             return -1;    /* ERR: bad WDAY */
  219.  
  220. #ifdef DEBUG
  221. printf("YMD: %d %d %d, T=%ld\n",year,mon,day,tres);
  222. #endif
  223.     /*
  224.      * Now determine time.  If not given, default to zeros
  225.      * (since time is always the least global spec)
  226.      */
  227.     tres *= 86400L;            /* Get # seconds (24*60*60) */
  228.     if (tres/86400L != t)
  229.         return -1;        /* ERR: overflow */
  230.     hour = min = sec = 0;
  231.     if (given(tp->tm_hour)) hour = tp->tm_hour;
  232.     if (given(tp->tm_min )) min  = tp->tm_min;
  233.     if (given(tp->tm_sec )) sec  = tp->tm_sec;
  234.     if (60 <= (unsigned)min  ||  60 < (unsigned)sec)
  235.         return -1;        /* ERR: MS out of range */
  236.     if (24 <= (unsigned)hour)
  237.         if(hour != 24 || (min+sec) !=0)    /* Allow 24:00 */
  238.             return -1;    /* ERR: H out of range */
  239.  
  240.     t = tres;
  241.     tres += sec + 60L*(zone + min + 60*hour);
  242.  
  243. #ifdef DEBUG
  244. printf("HMS: %d %d %d T=%ld\n",hour,min,sec,tres);
  245. #endif
  246.  
  247.     if (!localzone)            /* check for overflow */
  248.         return (year<0 ? (tres<0||86400L<=tres) : tres<t)  ?  -1  :  tres;
  249.  
  250.     /* Check results; LT may have had a different GMT offset back then.  */
  251.     tp = localtime(&tres);
  252.     if (given(atm->tm_sec)  &&  atm->tm_sec != tp->tm_sec)
  253.         return -1; /* If seconds don't match, we're in trouble.  */
  254.     if (!(
  255.         given(atm->tm_min)  &&  atm->tm_min != tp->tm_min  ||
  256.         given(atm->tm_hour)  &&  atm->tm_hour != tp->tm_hour  ||
  257.         given(atm->tm_mday)  &&  atm->tm_mday != tp->tm_mday  ||
  258.         given(atm->tm_mon)  &&  atm->tm_mon != tp->tm_mon  ||
  259.         given(atm->tm_year)  &&  atm->tm_year != tp->tm_year
  260.     ))
  261.         return tres; /* Everything matches.  */
  262.  
  263.     } while (--attempts);
  264.  
  265.     return -1;
  266. }
  267.  
  268. /*
  269. * Convert Unix time to struct tm format.
  270. * Use Coordinated Universal Time (UTC) if available and if version 5 or newer;
  271. * use local time otherwise.
  272. */
  273.     static const struct tm *
  274. time2tm(unixtime)
  275.     time_t unixtime;
  276. {
  277.     const struct tm *tm;
  278.     return
  279.             VERSION(5)<=RCSversion && (tm = gmtime(&unixtime))
  280.         ?    tm
  281.         :    localtime(&unixtime);
  282. }
  283.  
  284. /*
  285. * Convert Unix time to RCS format.
  286. * For compatibility with older versions of RCS,
  287. * dates before AD 2000 are stored without the leading "19".
  288. */
  289.     void
  290. time2date(unixtime,date)
  291.     time_t unixtime;
  292.     char date[datesize];
  293. {
  294.     register const struct tm *tm = time2tm(unixtime);
  295.     VOID sprintf(date, DATEFORM,
  296.         tm->tm_year  +  (tm->tm_year<100 ? 0 : 1900),
  297.         tm->tm_mon+1, tm->tm_mday,
  298.         tm->tm_hour, tm->tm_min, tm->tm_sec
  299.     );
  300. }
  301.  
  302.  
  303.  
  304.     void
  305. str2date(source, target)
  306.     const char *source;
  307.     char target[datesize];
  308. /* Parse a free-format date in SOURCE, convert it
  309.  * into RCS internal format, and store the result into TARGET.
  310.  */
  311. {
  312.     int zone;
  313.     time_t unixtime;
  314.     struct tm parseddate;
  315.  
  316.     if (!partime(source, &parseddate, &zone))
  317.         faterror("can't parse date/time: %s", source);
  318.     if ((unixtime = maketime(&parseddate, zone))  ==  -1)
  319.         faterror("bad date/time: %s", source);
  320.     time2date(unixtime, target);
  321. }
  322.